/*================基本样式重置================*/
html,
body,
div,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
span,
i,
a,
em,
strong,
b,
input,
textarea,
select {
    margin: 0;
    padding: 0;
    outline: none;
}

i,
em {
    font-weight: normal;
    font-style: normal;
}

b {
    font-weight: normal;
}

a,
i,
em,
span,
b,
img {
    display: block;
}

body {
    color: #333;
    font-family: "微软雅黑";
    font-size: 16px;
    overflow-x: hidden;
}

li {
    list-style: none;
}

a,
img,
input {
    border: 0 none;
}

a {
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
}

a:focus,
input:focus {
    outline: 0 none;
}

input::-webkit-search-cancel-button {
    display: none;
}

/*清除谷歌浏览器下的 search 叉号*/
input::-ms-clear {
    display: none;
}

/*清除IE下的 search 叉号*/
input {
    background: none;
}

button {
    border: none;
    cursor: pointer;
    outline: none;
}

textarea {
    resize: none;
    font-size: 12px;
}

/*去掉火狐和谷歌浏览器的Textarea改变尺寸大小功能*/
/*html5*/
article,
aside,
dialog,
footer,
header,
section,
footer,
nav,
figure,
menu {
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    outline: none;
}

/*========定义基础样式========*/
.hide {
    display: none;
}

.vis {
    visibility: hidden;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix:after {
    content: " ";
    display: block;
    clear: both;
    height: 0;
}

.clearfix {
    zoom: 1;
}

/*a标签鼠标hover高亮显示状态（可选用）*/
a .opacity {
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-opacity: 1;
}

a:hover .opacity {
    filter: alpha(opacity=80);
    opacity: 0.8;
    -moz-opacity: 0.8;
}

.over {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.text_over1 {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text_over2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -ms-box;
    -ms-line-clamp: 2;
    -ms-box-orient: vertical;
    display: -moz-box;
    -moz-line-clamp: 2;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -o-box;
    -o-line-clamp: 2;
    -o-box-orient: vertical;
}

.text_over3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -ms-box;
    -ms-line-clamp: 3;
    -ms-box-orient: vertical;
    display: -moz-box;
    -moz-line-clamp: 3;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -o-box;
    -o-line-clamp: 3;
    -o-box-orient: vertical;
}

.text_over4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -ms-box;
    -ms-line-clamp: 4;
    -ms-box-orient: vertical;
    display: -moz-box;
    -moz-line-clamp: 4;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -o-box;
    -o-line-clamp: 4;
    -o-box-orient: vertical;
}

.text_over5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -ms-box;
    -ms-line-clamp: 5;
    -ms-box-orient: vertical;
    display: -moz-box;
    -moz-line-clamp: 5;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -o-box;
    -o-line-clamp: 5;
    -o-box-orient: vertical;
}

/*主体宽度样式（可选用）如有新宽度，命名规则以小写w开头，后接具体宽度数据，例：*/
.w1200 {
    width: 1200px;
    margin: 0px auto;
}

.w1600 {
    width: 83.33%;
    min-width: 1200px;
    margin: 0 auto;
}

.w1400 {
    width: 72.91%;
    min-width: 1200px;
    margin: 0 auto;
}

/*.content {
    min-height: 700px;
}*/

.header {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 20;
    width: 100%;
    transition: all 0.5s;
    height: 65px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.header .w1600{
    height: 100%;
}

.headerNav {
    display: flex;
    align-items: center;
}

.headerBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logoImg{
    width: 150px;
}
.logoImg img{
    width: 100%;
}

.headerNavLeft {
    display: flex;
}

.headerNavLeft .one {

}

.headerNavLeft .one .clearf:after{
    content:'';
    display:block;
    clear:both;
    }

.headerNavLeft .one:first-child {
    margin-left: 0;
}

.headerLink {
    color: #fff;
    font-size: 16px;
    position: relative;
    line-height: 65px;
    padding: 0 30px;
}

.headerNavLeft .headerLink::after {
    content: "";
    width: 0;
    height: 2px;
    background: #EF4E22;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transition: all 0.5s;
    transform: translateX(-50%);
}

.headerLink::after, .header .headerNav .one:hover .headerLink::after {
    transition: all 0.5s;
    width: 100%;
}

.headerNavLeft .one .posBox {
    position: absolute;
    left: 0;
    top: 64px;
    width: 100%;
    z-index: 1;
    justify-content: center;
    display: none;
    background: #fff;
    padding-bottom: 40px;

}

.headerNavLeft .one .posBox::-webkit-scrollbar {

    display: none; /* Chrome Safari */

  }
/*.headerNavLeft .one:hover .posBox{
    display: block;
}*/
.headerNavLeft.toHide .one .posBox{
    display: none!important;
}

/* .headerNavLeft .one:hover .posBox {
    width: 100%;
    opacity: 1;
    transition: all 0.5s;
} */
.headerNavLeft .one .posBox .eon{
    display: flex;
    padding-bottom: 30px;
    margin-top: 30px;
    border-bottom: 1px solid #ccc;
}
.headerNavLeft .one .posBox .eon:last-child{
    border-bottom: none;
}
.headerNavLeft .one .posBox .eonBox{
    width: calc((100% - 3.6%) / 4);
    margin-right: 1.2%;
}
.headerNavLeft .one .posBox .eonBox:last-child{
    margin-right: 0;
}
.headerNavLeft .one .posBox .eonBox .text p {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.eonBox .text b {
    font-size: 14px;
    color: #666;
    padding-top: 12px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

}

.eonBox .dis {
    width: 100%;
    height: 280px;
    background: #f0f0f0;
    margin-top: 15px;
}
.eonBox .dis:hover span{
    color: #EF4E22;
}
.eonBox .dis .flight{
    width: 51.37%;
    height: 220px;
    margin: 0 auto;
    padding-top: 15px;
}
.eonBox .dis .flight img{
   width: 100%;
   height: 100%;
   object-fit: contain;
}
.eonBox .dis span{
    text-align: center;
    padding-top: 0;
    font-size: 16px;
    color: #666666;
}
.eonBox .model {
}
.eonBox .model .typeBox{
    display: flex;
    margin-top: 16px;
    position: relative;
}
.eonBox .model .typeBox::after{
    content: "";
    width: 0;
    height: 2px;
    background: #EF4E22;
    position: absolute;
    bottom: -12px;
    left: 0;
    transition: all 0.5s;

}

.eonBox .model .typeBox:hover::after{
    width: 100%;
    transition: all 0.5s;
    

}
.eonBox .model .typeBox .model_img{
    width: 54px;
    height: 50px;
}
.eonBox .model .typeBox .model_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.eonBox .model .typeBox .txt{
    margin-left: 20px;
    display: flex;
    align-items: center;
    width: 72%;
    margin-left: 2%;
}
.eonBox .model .typeBox .txt p{
    font-size: 12px;
    color: #333;

}
.eonBox .model .typeBox .txt b{
    font-size: 14px;
    color: #EF4E22;
    margin-left: 10%;
    min-width: 50px;
}

.posBox .solve .text_p{
    font-size: 18px;
    color: #333;
    margin-top: 30px;
}
.solve .projectbox {
margin-top: 30px;
padding-bottom: 30px;
border-bottom: 1px solid #e9e9e9;
}
.solve .projectbox:last-child{
    border: none;
}
.solve .projectbox .usebt{
    width: calc((100% - 3.6%) / 4);
    float: left;
    margin-right: 1.2%;
   
}
.solve .projectbox .usebt:last-child{
    margin-right: 0;
}
.solve .projectbox .usebt .use_img{
    width:100%;
    height: 211px;
    overflow: hidden;
}
.solve .projectbox .usebt img{
    width:100%;
    height: 211px;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.5s;
}
.solve .projectbox .usebt b{
    padding-top: 15px;
    font-size: 16px;
    color: #333;
}
.solve .projectbox .usebt:hover img{
    transform: scale(1.2);
    transition: all 0.5s;
}
.solve .projectbox .usebt:hover b{
    color: #EF4E22;
}

.one_s{
    position: relative;
}
.one_s .posBox{
    background: none !important;
   /* height: auto !important;*/
}
.one_s .list {
    margin: 2px;
    margin-top: 15px;
    box-sizing: border-box;
    padding: 24px 5px;
    background: #fff;
    box-shadow: 0 0 10px rgb(0,0,0,0.1);
}

.one_s  .list a p{
text-align: center;
font-size: 16px;
color: #666;
padding-bottom: 20px;
}
.one_s  .list a:hover p{
    color: #EF4E22;
}
.one_s  .list a:last-child p{
    padding-bottom: 0;
}


.searchImg {
    margin-left: 2vw;
    cursor: pointer;
}
.searchBox{
    width: calc(100% - 260px);
    height: 100%;
    position: relative;
    z-index: 1;
    display: none;
}
.searchBoxTop{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    border-bottom: 1px solid #e5e5e5;
}
.searchBoxInfoLeft{
    display: flex;
    align-items: center;
    width: 51vw;
    height: 100%;
    padding-left: 30px;
    box-sizing: border-box;
}
.searchBoxInfoBtn{
    width: 20px;
}
.searchBoxInfoBtn img{
    width: 100%;
}
.searchBoxInfoRight{
    width: 20px;
    cursor: pointer;
}
.searchBoxInfoRight img{
    width: 100%;
}
.searchBoxInfoInput{
    margin-left: 10px;
}
.searchBoxInfoInput{
    height: 100%;
    width: calc(100% - 30px);
}
.searchBoxInfoInput input{
    width: 100%;
    height: 100%;
    display: block;
    font-size: 16px;
}
.searchBoxBottom{
    width: 51vw;
    background: #fff;
    top: 100%;
    padding: 20px 30px;
    box-sizing: border-box;

}
.searchHeader .searchBoxBottom{
    animation-name: fadeIn;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}
.searchBg{
    position: fixed;
    top: 65px;
    width: 100%;
    height: calc(100vh - 65px);
    background: rgba(0,0,0,0.3);
    display: none;
}
.searchHeader .searchBg, .searchHeader .searchBox{
    display: block;
}
.fastTitle{
    margin-bottom: 10px;
    font-size: 14px;
    color: #999999;
}
.fastText{
    color: #333;
    font-size: 16px;
    line-height: 34px;
}
.fastText:hover{
    color: #EF4E22;
}
.header_fixed, .headerNews, .searchHeader, .newsTop {
    background: #fff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
.searchHeader .headerNav{
    display: none;
}
.header_fixed .logo1, .headerNews .logo1, .newsTop .logo1, .searchHeader .logo1 {
    display: none;
}

.logo2 {
    display: none;
}

.header_fixed .logo2, .headerNews .logo2, .newsTop .logo2, .searchHeader .logo2 {
    display: block;
}

.header_fixed .headerLink, .headerNews .headerLink, .newsTop .headerLink {
    color: #333;
}

.footer {
    background: url("https://cdncn.prodrone-tech.com/images/public/footer.png") center no-repeat;
    background-size: cover;
    padding-top: 90px;
}

.footInfo {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.footInfoLeft {
    display: flex;
}

.footInfoList {
    margin-left: 20px;
    width: 160px;
}

.footInfoList:first-child {
    margin-left: 0;
}

.footListTitle {
    font-size: 14px;
    color: #ededed;
}
.subscribe{
    font-size: 14px;
    color: #ededed;
}
.footListBox a {
    margin-top: 15px;
    color: #fff;
    opacity: 0.6;
    font-size: 12px;
}

.footListBox a:hover {
    color: #EF4E22;
    opacity: 1;
}

.latest{
    margin-top: 15px;
    color: #fff;
    opacity: 0.6;
    font-size: 12px;
}
.latestInfo{
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.latestInput{
    width: 190px;
    height: 30px;
    border: 1px solid rgba(255,255,255,0.6);
    border-right: 0;
    box-sizing: border-box;
    padding: 0 10px;
}
.latestInput input{
    width: 100%;
    height: 100%;
    font-size: 12px;
    color: #fff;
}
.latestInput input::placeholder {
    color: #fff;
}	
.emailBtn{
    width: 45px;
    height: 30px;
    line-height: 30px;
    background: url("../images/public/icon-9.png") center no-repeat;
    background-size: cover;
}
.emailTips{
    margin-top: 15px;
    color: #fff;
    opacity: 0.6;
    font-size: 12px;
}
.footListBox a:hover {
    color: #EF4E22;
    opacity: 1;
}
.footInfoRightBox{
    display: flex;
    align-items: center;
    margin-top: 60px;
}
.community{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.community.curr{
    display: flex;
}
.communityBox{
    background: #fff;
    padding: 30px;
    position: relative;
}
.communityClose{
    position: absolute;
    right: 30px;
    top: 25px;
    cursor: pointer;
}
.communityIcon{
    width: 37px;
    margin: 0 auto;
    margin-top: 20px;
}
.communityIcon img{
    width: 100%;
}
.communityTitle{
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}
.communityText{
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
    color: #999999;
    font-size: 16px;
    width: 600px;
}
.communityForm{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.communityInput{
    width: calc(100% - 200px);
    border: 1px solid #ccc;
    height: 40px;
    box-sizing: border-box;
    padding-left: 10px;
}
.communityInput input{
    width: 100%;
    height: 100%;
}
.communityBtn{
    width: 120px;
    text-align: center;
    line-height: 40px;
    background: #EF4E22;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
.communityTips{
    width: 600px;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 14px;
    color: #999999;
    text-align: center;
}

.footerIcon {
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    border: #fff 2px solid;
    opacity: 0.6;
    background-size: 26px 23px!important;
}

.footerIcon-1 {
    background: url("https://cdncn.prodrone-tech.com/images/public/icon-1.png") center no-repeat;
}

.footerIcon-2 {
    background: url("https://cdncn.prodrone-tech.com/images/public/icon-2.png") center no-repeat;
    margin-left: 15px;
}

.footerIcon-3 {
    background: url("https://cdncn.prodrone-tech.com/images/public/icon-4.png") center no-repeat;
    margin-left: 15px;
}

.footerIcon-4 {
    background: url("https://cdncn.prodrone-tech.com/images/public/icon-5.png") center no-repeat;
    margin-left: 15px;
    display: none;
}

.footerIcon-5 {
    background: url("https://cdncn.prodrone-tech.com/images/public/icon-6.png") center no-repeat;
    margin-left: 15px;
}

.footerIcon .pos {
    position: absolute;
    bottom: 50px;
    width: 124px;
    height: 0;
    left: calc(50% + 24px);
    transform: translateX(-50%);
    overflow: hidden;
    transition: all 0.5s;
}
.footerIcon:hover{
    opacity: 1;
}

.footerIcon-1:hover .pos, .footerIcon-3:hover .pos, .footerIcon-5:hover .pos{
    height: 130px;
}

.keepRecord {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
    margin-top: -26px;
    font-size: 12px;
}

.keepRecordLink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 24px;
    margin-top: 80px;
    border-top: 1px solid #383838;
    font-size: 12px;
}

.keepRecordLeft {
    display: flex;
    align-items: center;
    color: #999;
}

.keepRecordLeft a {
    color: #999;
}

.statement {
    display: flex;
    align-items: center;
}

.statement a {
    color: #999;
    margin-left: 20px;
}

.statement a:hover {
    color: #EF4E22;
}

.statement a:first-child {
    margin-left: 0;
}

.stateImg {
    margin-left: 15px;
}

.keepRecord01 {
    margin-left: 5px;
}

.keepRecord02 {
    margin-left: 5px;
}

.serviceBox {
    position: fixed;
    right: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: #fff;
    display: none;
    z-index: 1;
    bottom: 5%;
}

.consult {
    padding: 15px;
    position: relative;
    cursor: pointer;
    color: #333;
}

.consult:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 32px;
    background: #d5d5d5;
    height: 1px;
    transform: translateX(-50%);
    box-sizing: border-box;
}

.consult:first-child:after {
    display: none;
}

.conSerImg {
    margin: 0 auto;
}

.consultText {
    margin-top: 5px;
}

.consult:hover .consultText {
    color: #EF4E22;
}

.consultHover {
    display: none;
}

.consult:hover .consultDefault {
    display: none;
}

.consult:hover .consultHover {
    display: block;
}

.consult .pos {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
    width: 0;
    overflow: hidden;
}

.consult:hover .consultFir {
    left: -190px;
    width: 180px;
}

.consult:hover .consultSen {
    left: -165px;
    width: 155px;
}

/*分页*/
.paging {
    padding: 110px 0 100px 0;
    font-size: 0;
    line-height: 47px;
    text-align: center;
}

.paging li {
    display: inline-block;
    margin: 0 12px;
    font-size: 16px;
    color: #666;
}

.paging li a,
.paging li span {
    color: #666;
    min-width: 37px;
    padding: 0 5px;
    border: #ccc 1px solid;
}

.paging li.active a,
.paging li.active span {
    color: #fff;
    background: #EF4E22;
    border: #EF4E22 1px solid;
}

.paging li:hover a {
    color: #EF4E22;
    border: #EF4E22 1px solid;
}

.paging li:first-child {
    float: left;
    padding-left: 24px;
    margin: 0;
    line-height: 49px;
    font-size: 14px;
    color: #999;
    background: url(https://cdncn.prodrone-tech.com/images/icon/icon_24.png) left center no-repeat;
}

.paging li:first-child:hover {
    background: url(https://cdncn.prodrone-tech.com/images/icon/icon_24s.png) left center no-repeat;
}

.paging li:first-child a,
.paging li:first-child span {
    padding: 0;
    border: none;
}

.paging li:last-child {
    float: right;
    padding-right: 24px;
    margin: 0;
    line-height: 49px;
    font-size: 14px;
    color: #999;
    background: url(https://cdncn.prodrone-tech.com/images/icon/icon_25.png) right center no-repeat;
}

.paging li:last-child:hover {
    background: url(https://cdncn.prodrone-tech.com/images/icon/icon_25s.png) right center no-repeat;
}

.paging li:last-child a,
.paging li:last-child span {
    padding: 0;
    border: none;
}

.headerIconList {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 33px;
    margin-left: 2vw;
}

.headerIconList .pos {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 108px;
    padding: 15px 0;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.headerIconList .pos a {
    color: #333;
    text-align: center;
    line-height: 35px;
}
.headerIconList .pos a:hover{
    color: #EF4E22;
}
.language {
    width: 22px;
    height: 22px;
    background: url(https://cdncn.prodrone-tech.com/images/public/language.gif) center no-repeat;
    background-size: cover;
}
.header_fixed .language, .headerNews .language, .newsTop .language{
    background: url(https://cdncn.prodrone-tech.com/images/public/languages.gif) center no-repeat;
    background-size: cover;
}
.headerIconList:hover .pos {
    display: block;
}
/*.headerIconList .pos:after {
    content: '';
    position: absolute;
    background: url(https://cdncn.prodrone-tech.com/images/public/top.png) center no-repeat;
    width: 13px;
    height: 6px;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}*/

.consultText{
    font-size: 14px;
}

@-webkit-keyframes scrolls {
    from {
        bottom: 12%;
    }

    50% {
        bottom: calc(12% + 12px);
    }

    100% {
        bottom: 12%;
    }
}

@keyframes scrolls {
    from {
        bottom: 12%;
    }

    50% {
        bottom: calc(12% + 12px);
    }

    100% {
        bottom: 12%;
    }
}

@-webkit-keyframes Mscrolls {
    from {
        padding-bottom: 0.05rem;
    }

    50% {
        padding-bottom: 0.12rem;
    }

    100% {
        padding-bottom: 0.05rem;
    }
}

@keyframes move-forever {
    0% {
        transform: translate3d(-80px, 0, 0);
    }

    50% {
        transform: translate3d(80px, 0, 0);
    }

    100% {
        transform: translate3d(-80px, 0, 0);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        -ms-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        -ms-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}
.fadeIn{
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp2 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,40%,0);
        -ms-transform: translate3d(0,40%,0);
        transform: translate3d(0,40%,0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInUp_box {
    -webkit-animation-name: fadeInUp_box;
    animation-name: fadeInUp_box;
}

@-webkit-keyframes fadeInUp_box {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp_box {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        -ms-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}




/**/

.page_re .service {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
}
.page_re .serviceList {
  width: calc((100% - 80px) / 3);
  margin-left: 40px;
  background: #1a1a1a;
  height: 210px;
  padding: 0 45px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}
.page_re .serviceList:first-child {
  margin-left: 0;
}
.page_re .serviceList:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #EF4E22;
  left: 0;
  transition: all 1s;
}
.page_re .serviceList:hover:after {
  width: 100%;
}
.page_re .serviceText {
  font-size: 26px;
  font-weight: 500;
  color: #fff;
}
.page_re .serviceMore {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
}
.page_re .serviceMore span {
  padding-right: 13px;
  background: url(../images/icon/icon_102.png) right center no-repeat;
}
.page_re .serviceMore:hover {
  text-decoration: underline;
}
.page_re .serviceListInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.page_re .service-1 {
  background-size: cover;
  width: 70px;
  height: 72px;
}
.page_re .service-2 {
  background-size: cover;
  width: 68px;
  height: 60px;
}
.page_re .service-3 {
  background-size: cover;
  width: 68px;
  height: 64px;
}
.page_re .serviceHover {
  display: none;
}



